Lately, In-n-Out has been struggling to correctly take orders from its customer! You have been hired to fix their input/output system. Solving this problem will provide you with the basis to solve future challenge problems as they require you to take in values, perform actions on these values based on the problem, and finally output your calculations.
Practice by multiplying each input by 3 to calculate the correct number of burgers ordered by each customer.
Practice by multiplying each input by 3 to calculate the correct number of burgers ordered by each customer.
Input Format
A single line containing an integer. We recommend you use a java.util.Scanner to receive the input.
Sample Input
224
Output Format A single line containing an integer representing the input multiplied by three. We recommend using System.out.println("") to output your answer.
Sample Output
672
You must be logged in to submit a solution.